home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / SourceCode / MiscKit1.7.1 / MiscKit / Examples / TableParse / Makefile < prev    next >
Encoding:
Makefile  |  1994-10-25  |  481 b   |  19 lines

  1. # Makefile for compiling simple MiscKit examples
  2. # Written and Copyright (C) 1994, by Don Yacktman, all rights reserved.
  3.  
  4. NAME = ParseTest
  5. TARGET_ARCHS = m68k i386
  6. ARCHIFY = /usr/lib/arch_tool -archify_list
  7. ARCH_FLAGS = `$(ARCHIFY) $(TARGET_ARCHS)`
  8.  
  9. all: $(NAME)
  10.  
  11. $(NAME):
  12.     cc -ObjC -O2 -pipe -L../../Source -L/LocalDeveloper/Libraries \
  13.         -I../../Headers -Wall $(ARCH_FLAGS) \
  14.         -o $(NAME) $(NAME).m -lMiscKit -lNeXT_s
  15.     strip $(NAME)
  16.  
  17. clean:
  18.     rm -rf $(NAME) AddressBook.table.out
  19.